home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-12-20 | 8.6 KB | 319 lines | [TEXT/ALFA] |
- # First basic initialisation: (works with Alpha 7.1 or 8.0 development)
- if {[catch {
- if {[info tclversion] < 8.0} {
- ;proc namespace {cmd ns script} {if {$script != ""} {uplevel $script}}
- ;proc variable {n} { global mode ; uplevel 1 [list upvar \#0 $mode::$n $n] }
- ;proc renameMenuItem {args} {}
- } else {
- namespace eval alpha {
- namespace eval index {}
- namespace eval cache {}
- }
- namespace eval win {}
- if {[info commands scancontext] == ""} {
- proc scancontext {cmd args} {
- switch $cmd {
- "create" {
- uplevel 1 {
- set __scan 0
- while {[array exists scancontext$__scan]} {
- incr __scan
- }
- set scancontext[set __scan]() 1
- return scancontext$__scan
- }
- }
- "delete" {
- upvar [lindex $args 0] scan
- unset scan
- }
- }
- }
-
- proc scanmatch {scanid regexp script args} {
- if {[string match "-*" $scanid]} {
- set flags $scanid
- set scanid $regexp
- set regexp [list $flags $script]
- set script [lindex $args 0]
- } else {
- set regexp [list -- $regexp]
- }
- upvar $scanid scan
- set scan($regexp) $script
- return $scanid
- }
-
- proc scanfile {scanid fid} {
- upvar $scanid scan
- upvar matchInfo m
- set m(linenum) 0
- set m(offset) 0
- set names [array names scan]
- while {[set count [gets $fid m(line)]] >= 0} {
- incr m(linenum)
- incr m(offset) $count
- foreach reg $names {
- if {$reg == ""} {continue}
- if {[regexp [lindex $reg 0] [lindex $reg 1] $m(line) \
- "" m(submatch0) m(submatch1) m(submatch2)]} {
- uplevel 1 $scan($reg)
- }
- }
- }
- }
- }
- if {[info commands objDialog] != ""} {
- rename dialog ""
- rename objDialog dialog
- }
- rename lsort __lsort
- proc lsort {args} {
- if {[lindex $args 0] == "-ignore"} {
- eval __lsort -dictionary [lrange $args 1 end]
- } else {
- eval __lsort $args
- }
- }
- rename glob __glob
- proc glob {args} {
- if {[lindex $args 0] == "-t"} {
- eval __glob [lrange $args 2 end]
- } else {
- eval __glob $args
- }
- }
- # Tcl 8.0 doesn't handle \t \r \n , but Tcl 8.1 will
- if {[info tclversion] == 8.0} {
- rename regexp __regexp
- proc regexp {args} {
- set i 0
- while {[string match -* [set a [lindex $args $i]]]} {
- incr i
- if {$a == "--"} {
- set a [lindex $args $i]
- break
- }
- }
- __regsub -all "\\\\t" $a "\t" a
- __regsub -all "\\\\r" $a "\r" a
- __regsub -all "\\\\n" $a "\n" a
- __regsub -all "\\\\w" $a "\[a-zA-Z_\]" a
- uplevel __regexp [lreplace $args $i $i $a]
- }
- rename regsub __regsub
- proc regsub {args} {
- set i 0
- while {[string match -* [set a [lindex $args $i]]]} {
- incr i
- if {$a == "--"} {
- set a [lindex $args $i]
- break
- }
- }
- __regsub -all "\\\\t" $a "\t" a
- __regsub -all "\\\\r" $a "\r" a
- __regsub -all "\\\\n" $a "\n" a
- __regsub -all "\\\\w" $a "\[a-zA-Z_\]" a
- uplevel __regsub [lreplace $args $i $i $a]
- }
- }
- }
-
- # Get Alpha's current name.
- regexp {"([^"]+)" "ALFA" } [processes] "" ALPHA
- # PREFS points to a folder 'Alpha', we add the major version number
- set alpha::version [lindex [split [string trimleft [version] "Alpha Version"] ,] 0]
- set alpha::tclversion ${alpha::version}
- # This patch version will eventually disappear, I think, since it is now
- # considered the version of the Alpha application, and should therefore
- # come from the application itself (the C code).
- set alpha::patchlevel ".5"
- append alpha::version ${alpha::patchlevel}
- # append patch-level to Alphatcl version
- set alpha::tclpatchlevel ".5"
- append alpha::tclversion ${alpha::tclpatchlevel}
-
- if {[regexp -nocase "for (ppc|68k)" [version]] || ![regexp "for" [version]]} {
- set alpha::platform "alpha"
- }
-
- append PREFS "-v[lindex [split ${alpha::version} .] 0]"
- # useful proc
- if {[info tclversion] < 7.6} {
- set tcl_platform(platform) macintosh
- # Alpha already has these two renamed internally
- # they need their argument packaged as a list!
- ;proc mkdir {dir} {
- oldMkdir [list $dir]
- }
- ;proc rmdir {dir} {
- oldRmdir [list $dir]
- }
- if {[info commands __file] == ""} {
- rename file __file
- ;proc file {cmd args} {
- switch -- $cmd {
- "join" {
- regsub -all "::" [set res [join $args ":"]] ":" res
- return $res
- }
- "copy" {eval copyFile $args}
- "rename" {eval moveFile $args}
- "delete" {
- if {[file isdir [lindex $args 0]]} {
- eval rmdir $args
- } else {
- eval removeFile $args
- }
- }
- "mkdir" {eval mkdir $args}
- "volumes" {
- # Thanks to Jon
- return [aebuild::result 'MACS' core getd ---- {obj {form:indx, want:type(cdis), seld:abso('all '), from:'null'()}} rtyp TEXT]
- }
- default {uplevel 1 __file $cmd $args}
- }
- }
- }
- }
- # check if the user over-rides things
- if {[file exists [file join ${HOME} AlphaPrefs]] \
- && [file isdir [file join ${HOME} AlphaPrefs]]} {
- set PREFS [file join ${HOME} AlphaPrefs]
- } else {
- if {![file exists $PREFS]} { file mkdir $PREFS }
- }
- set alpha::noMenusYet 1
- # source v. important code
- source [file join $HOME Tcl SystemCode library.tcl]
- alpha::makeAutoPath 0 $skipPrefs
- alpha::fixCoreBugs
- # get known packages
- catch {cache::read index::feature}
- # if configuration has changed, rebuild indices
- if {[alpha::checkConfiguration]} {
- alertnote "I need to rebuild the package indices.\
- This'll take just a few seconds."
- # power-user can use 'option' to avoid the rebuild
- if {!([getModifiers] & 72)} {
- alpha::makeIndices
- }
- }
-
- if {[alpha::package vcompare ${alpha::version} 7.1d1] < 0} {
- alertnote "This version of Alpha is too old.\
- Upgrade from\
- http://alpha.olm.net/ or\
- ftp://ftp.ucsd.edu/alpha/ \
- \r\rI'll quit now."
- quit
- }
- # load the list of active packages from special cache
- namespace eval global {}
- set global::features ""
- if {!$skipPrefs} {
- catch {cache::read configuration}
- catch {unset mode::defaultfeatures}
- }
-
- # Now do all the more complex stuff:
- # (from now on, avoid use of 'source'. Prefer to use auto-loading)
-
- # pull in smarterSource and internationalMenus packages
- # if the user activated them
- set alpha::systempackages [list smarterSource internationalMenus]
- if {[lsearch -exact ${global::features} smarterSource] != -1} {
- alpha::package require smarterSource
- }
- if {[lsearch -exact ${global::features} internationalMenus] != -1} {
- alpha::package require internationalMenus
- }
-
- removeTemporaryFiles
- alpha::getGlobalPreferences
- alpha::getDefinitions
- if {!$skipPrefs} {
- # Read both scalar and array definitions from preferences folder.
- alpha::readUserDefs
- if [key::optionPressed] {
- }
- }
- # define v. important keyboard variables
- keys::keyboardChanged
- menu::buildBasic
- if ![info exists alpha::haveBasicKeys] {
- alpha::basicKeyBindings
- }
- alpha::keyBindings
- alpha::useElectricTemplates
- # Read in all packages, modes and menus.
- alpha::findAllPlugins
- if {!$skipPrefs} {
- # read preferences file
- if [catch {alpha::readUserPrefs} err] {
- append alpha::errorLog "\r" $err
- unset err
- }
- }
- # call anything that's attached to my keyboard.
- hook::callAll keyboard $keyboard
- # build all menus completely.
- alpha::buildMainMenus
- # insert menus
- global::insertAllMenus
- # Bind special keys
- bind::fromArray keys::specialBindings keys::specialProcs
-
- # if we do anything else to a menu, it must now be rebuilt
- unset alpha::noMenusYet
-
- # couple of random things
- alpha::makeColourList
-
- # Add to chars considered part of words.
- addAlphaChars {_ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüÅØæøæß}
- # Call all startup hooks
- hook::callAll startupHook *
- # Alerts and readme's for the user:
-
- if {!$skipPrefs} {
- if {![info exists readReadme] \
- || ($readReadme != [alpha::package versions Alpha])} {
- addDef readReadme [alpha::package versions Alpha]
- edit -r [file join $HOME Help Readme]
- } else {unset readReadme}
-
- if {[info exists alpha::readAtStartup]} {
- foreach f ${alpha::readAtStartup} {
- catch {edit -r $f}
- }
- unset alpha::readAtStartup
- lappend modifiedVars alpha::readAtStartup
- }
- }
-
- } err]} {
- append alpha::errorLog "\r" $errorInfo
- if {[dialog::yesno -y "View the error" -n "Continue" "That was a core startup error. Alpha will probably not function correctly."]} {
- dialog::alert $errorInfo
- }
- }
- if {[info exists alpha::errorLog]} {
- catch {
- new -n "* Alpha startup error log *"
- insertText ${alpha::errorLog}
- unset alpha::errorLog
- winReadOnly
- }
- }
- # call these two procs to sort out the menu enabled state.
- catch {
- menuEnableHook [expr {[win::Current] != ""}]
- requireOpenWindowsHook 2
- }
- message "Initialization Complete"
-
-
-
-